home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.text;
-
- public class Segment {
- public char[] array;
- public int offset;
- public int count;
-
- public Segment() {
- this.array = null;
- this.offset = 0;
- this.count = 0;
- }
-
- public Segment(char[] array, int offset, int count) {
- this.array = array;
- this.offset = offset;
- this.count = count;
- }
-
- public String toString() {
- return new String(this.array, this.offset, this.count);
- }
- }
-